home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / stbsv.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  389 b   |  15 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. void
  6. cblas_stbsv (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
  7.          const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag,
  8.          const int N, const int K, const float *A, const int lda,
  9.          float *X, const int incX)
  10. {
  11. #define BASE float
  12. #include "source_tbsv_r.h"
  13. #undef BASE
  14. }
  15.